EnableRequest

data class EnableRequest(maxTotalBufferSize: Int?, maxResourceBufferSize: Int?, maxPostDataSize: Int?)

Represents request frame that can be used with Network#enable operation call.

Enables network tracking, network events will now be delivered to the client.

See also

Constructors

EnableRequest
Link copied to clipboard
fun EnableRequest(maxTotalBufferSize: Int? = null, maxResourceBufferSize: Int? = null, maxPostDataSize: Int? = null)

Properties

maxPostDataSize
Link copied to clipboard
val maxPostDataSize: Int? = null
Longest post body size (in bytes) that would be included in requestWillBeSent notification
maxResourceBufferSize
Link copied to clipboard
val maxResourceBufferSize: Int? = null
Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).
maxTotalBufferSize
Link copied to clipboard
val maxTotalBufferSize: Int? = null
Buffer size in bytes to use when preserving network payloads (XHRs, etc).

Sources

jvm source
Link copied to clipboard